home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung CD 2 (Tewi)(1994).iso / gnu / djgpp / emu387 / main.cc < prev    next >
C/C++ Source or Header  |  1993-08-28  |  425b  |  38 lines

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. #ifndef TEST
  5. #define TEST 0
  6. #endif
  7.  
  8. extern void emu_install();
  9. extern void emu_printall();
  10.  
  11. #if TEST
  12.  
  13. double a=10, b=16;
  14. float f=3.3;
  15. int i=3;
  16.  
  17. void test()
  18. {
  19.   asm("fldl _b");
  20.   asm("fldl _a");
  21.   emu_printall();
  22.   asm("fdivr %st,%st(1)");
  23.   emu_printall();
  24. }
  25.  
  26. #endif
  27.  
  28. main()
  29. {
  30. #if TEST
  31.   test();
  32. #endif
  33.   emu_install();
  34. #if TEST
  35.   test();
  36. #endif
  37. }
  38.